projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
82cb4e9
)
(org-get-time-of-day): Fixed bug with times before 1am.
author
Carsten Dominik
<dominik@science.uva.nl>
Fri, 13 Jan 2006 14:17:37 +0000
(14:17 +0000)
committer
Carsten Dominik
<dominik@science.uva.nl>
Fri, 13 Jan 2006 14:17:37 +0000
(14:17 +0000)
lisp/textmodes/org.el
patch
|
blob
|
history
diff --git
a/lisp/textmodes/org.el
b/lisp/textmodes/org.el
index ef8dba71f04e9b64fbbc92652edbb22283ee32ab..92854893b25a830646f5d8159d8400888943c9b7 100644
(file)
--- a/
lisp/textmodes/org.el
+++ b/
lisp/textmodes/org.el
@@
-5786,7
+5786,7
@@
HH:MM."
(string-to-number (match-string 3 s))
0)))
(t1 (concat " "
- (if (< t0 100) "0" "")
+ (if (< t0 100) "0" "")
(if (< t0 10) "0" "")
(int-to-string t0))))
(if string (concat (substring t1 -4 -2) ":" (substring t1 -2)) t0)))))